3.183 \(\int x (a x^n)^{-1/n} \, dx\)

Optimal. Leaf size=15 \[ x^2 \left (a x^n\right )^{-1/n} \]

[Out]

x^2/((a*x^n)^(1/n))

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 15, normalized size of antiderivative = 1.00, number of steps used = 2, number of rules used = 2, integrand size = 13, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.154, Rules used = {15, 8} \[ x^2 \left (a x^n\right )^{-1/n} \]

Antiderivative was successfully verified.

[In]

Int[x/(a*x^n)^n^(-1),x]

[Out]

x^2/(a*x^n)^n^(-1)

Rule 8

Int[a_, x_Symbol] :> Simp[a*x, x] /; FreeQ[a, x]

Rule 15

Int[(u_.)*((a_.)*(x_)^(n_))^(m_), x_Symbol] :> Dist[(a^IntPart[m]*(a*x^n)^FracPart[m])/x^(n*FracPart[m]), Int[
u*x^(m*n), x], x] /; FreeQ[{a, m, n}, x] &&  !IntegerQ[m]

Rubi steps

\begin {align*} \int x \left (a x^n\right )^{-1/n} \, dx &=\left (x \left (a x^n\right )^{-1/n}\right ) \int 1 \, dx\\ &=x^2 \left (a x^n\right )^{-1/n}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 15, normalized size = 1.00 \[ x^2 \left (a x^n\right )^{-1/n} \]

Antiderivative was successfully verified.

[In]

Integrate[x/(a*x^n)^n^(-1),x]

[Out]

x^2/(a*x^n)^n^(-1)

________________________________________________________________________________________

fricas [A]  time = 0.79, size = 9, normalized size = 0.60 \[ \frac {x}{a^{\left (\frac {1}{n}\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/((a*x^n)^(1/n)),x, algorithm="fricas")

[Out]

x/a^(1/n)

________________________________________________________________________________________

giac [A]  time = 0.17, size = 9, normalized size = 0.60 \[ \frac {x}{a^{\left (\frac {1}{n}\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/((a*x^n)^(1/n)),x, algorithm="giac")

[Out]

x/a^(1/n)

________________________________________________________________________________________

maple [F]  time = 0.02, size = 0, normalized size = 0.00 \[ \int x \left (a \,x^{n}\right )^{-\frac {1}{n}}\, dx \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x/((a*x^n)^(1/n)),x)

[Out]

int(x/((a*x^n)^(1/n)),x)

________________________________________________________________________________________

maxima [A]  time = 1.46, size = 20, normalized size = 1.33 \[ \frac {x^{2}}{a^{\left (\frac {1}{n}\right )} {\left (x^{n}\right )}^{\left (\frac {1}{n}\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/((a*x^n)^(1/n)),x, algorithm="maxima")

[Out]

x^2/(a^(1/n)*(x^n)^(1/n))

________________________________________________________________________________________

mupad [B]  time = 1.06, size = 15, normalized size = 1.00 \[ \frac {x^2}{{\left (a\,x^n\right )}^{1/n}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x/(a*x^n)^(1/n),x)

[Out]

x^2/(a*x^n)^(1/n)

________________________________________________________________________________________

sympy [A]  time = 2.01, size = 56, normalized size = 3.73 \[ \begin {cases} a^{- \frac {1}{n}} x^{2} \left (x^{n}\right )^{- \frac {1}{n}} & \text {for}\: a \neq 0^{n} \\- \frac {x^{2}}{0^{n} \tilde {\infty }^{n} \left (0^{n}\right )^{\frac {1}{n}} \left (x^{n}\right )^{\frac {1}{n}} - 2 \left (0^{n}\right )^{\frac {1}{n}} \left (x^{n}\right )^{\frac {1}{n}}} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x/((a*x**n)**(1/n)),x)

[Out]

Piecewise((a**(-1/n)*x**2*(x**n)**(-1/n), Ne(a, 0**n)), (-x**2/(0**n*zoo**n*(0**n)**(1/n)*(x**n)**(1/n) - 2*(0
**n)**(1/n)*(x**n)**(1/n)), True))

________________________________________________________________________________________